@charset "UTF-8";
/**
 * @license
 *
 * Font Family: Plein
 * Designed by: Inga Plönnigs
 * URL: https://www.fontshare.com/fonts/plein
 * © 2023 Indian Type Foundry
 *
 * Font Styles:
 * Plein Variable(Variable font)
 * Plein Variable Italic(Variable font)
 * Plein Light
 * Plein Light Italic
 * Plein Regular
 * Plein Italic
 * Plein Medium
 * Plein Medium Italic
 * Plein Bold
 * Plein Bold Italic
 * Plein Black
 * Plein Black Italic
 *
*/
/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 300.0 'wght' 900.0;
*
* available axes:

* 'wght' (range from 300.0 to 900.0)

* 'wght' (range from 300.0 to 900.0)

*/
@font-face {
  font-family: "Plein-Variable";
  src: url("../fonts/Plein-Variable.woff2") format("woff2"), url("../fonts/Plein-Variable.woff") format("woff"), url("../fonts/Plein-Variable.ttf") format("truetype");
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}
/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 300.0 'wght' 900.0;
*
* available axes:

* 'wght' (range from 300.0 to 900.0)

* 'wght' (range from 300.0 to 900.0)

*/
@font-face {
  font-family: "Plein-VariableItalic";
  src: url("../fonts/Plein-VariableItalic.woff2") format("woff2"), url("../fonts/Plein-VariableItalic.woff") format("woff"), url("../fonts/Plein-VariableItalic.ttf") format("truetype");
  font-weight: 300 900;
  font-display: swap;
  font-style: italic;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes translateLeftIn {
  0% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes translateLeftOut {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(20px);
  }
}
@keyframes translateRightIn {
  0% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes translateRightOut {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-20px);
  }
}
.fadeIn {
  animation: fadeIn 0.25s ease-in-out forwards;
}

.fadeInQuick {
  animation: fadeIn 0.25s ease-in-out forwards;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

.fadeOut {
  animation: fadeOut 0.25s ease-in-out forwards;
}

.fadeOutQuick {
  animation: fadeOut 0.25s ease-in-out forwards;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

.translateLeftInAndFadeIn {
  animation: translateLeftIn 0.25s ease-in-out forwards, fadeIn 0.25s ease-in-out forwards;
}

.translateLeftOutAndFadeOut {
  animation: translateLeftOut 0.25s ease-in-out forwards, fadeOut 0.25s ease-in-out forwards;
}

.translateRightInAndFadeIn {
  animation: translateRightIn 0.25s ease-in-out forwards, fadeIn 0.25s ease-in-out forwards;
}

.translateRightOutAndFadeOut {
  animation: translateRightOut 0.25s ease-in-out forwards, fadeOut 0.25s ease-in-out forwards;
}

.large_blue_button {
  width: max-content;
  display: flex;
  padding: 16px 16px 16px 24px;
  align-items: center;
  gap: 12px;
  border-radius: 32px;
  background: var(--fill-accent, #382be9);
  box-shadow: 0px 12px 16px 0px rgba(11, 0, 153, 0.04);
  cursor: pointer;
}
.large_blue_button .button-text {
  color: #fff;
  font-family: Plein Variable;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
}
.large_blue_button .button-icon {
  background: url("../images/general/go-right-icon.svg");
  width: 24px;
  height: 24px;
  background-size: contain;
}

.large_blue_button:hover {
  background: var(--text-quote, #0b0099);
}

.large_white_button {
  display: flex;
  padding: 12px 24px 12px 14px;
  align-items: center;
  gap: 12px;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0px 12px 16px 0px rgba(11, 0, 153, 0.04);
  max-width: max-content;
  cursor: pointer;
}
.large_white_button .button-icon {
  width: 24px;
  height: 24px;
  background: url("../images/general/icon_down.svg");
  background-size: contain;
}
.large_white_button .button-text {
  color: var(--fill-accent, #382be9);
  font-family: "Plein-Variable";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.large_white_button:hover {
  box-shadow: none;
}

.more-button {
  display: inline-flex;
  padding: 5px 5px 5px 16px;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  background: #0b0099;
  cursor: pointer;
}
.more-button .button-text {
  color: #fff;
  font-family: "Plein-Variable";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
}
.more-button .button-icon {
  width: 20px;
  height: 20px;
  background: url("../images/general/read-more-icon.png");
  background-size: contain;
}

.more-button:hover {
  background: #2417cf;
}

.read-more {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.read-more .overline {
  color: var(--fill-accent, #382be9);
}
.read-more .icon {
  width: 16px;
  height: 16px;
  background: url("../images/general/icon_right_blue.svg");
  background-size: contain;
}

html {
  font-family: "Plein-Variable";
  font-family: "Plein-VariableItalic";
  font-family: "Plein-Light";
  font-family: "Plein-LightItalic";
  font-family: "Plein-Regular";
  font-family: "Plein-Italic";
  font-family: "Plein-Medium";
  font-family: "Plein-MediumItalic";
  font-family: "Plein-Bold";
  font-family: "Plein-BoldItalic";
  font-family: "Plein-Black";
  font-family: "Plein-BlackItalic";
}

body {
  margin: 0;
  padding: 0;
}

h1 {
  color: #0c0a29;
  font-family: "Plein-Variable";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 112%; /* 53.76px */
  letter-spacing: -0.96px;
  padding: 0;
  margin: 0;
}

h2 {
  color: #0a2511;
  font-family: "Plein-Variable";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 112%; /* 40.32px */
  padding: 0;
  margin: 0;
}

h3 {
  color: #0a2511;
  font-family: "Plein-Variable";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 40px */
  padding: 0;
  margin: 0;
}

h4 {
  color: #0a2511;
  font-family: "Plein-Variable";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 35px */
  padding: 0;
  margin: 0;
}

h4.highlighted {
  color: var(--fill-accent, #382be9);
}

p {
  color: #4b4a5a;
  font-family: "Plein-Variable";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
}

p.bold {
  font-family: "Plein-Variable";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

p.light {
  color: #4b4a5a;
  font-family: "Plein-Variable";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
}

p.italics {
  color: #4b4a5a;
  font-family: "Plein-Variable";
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 160%;
}

a {
  color: inherit;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  text-decoration-line: underline;
}

span.italics {
  font-family: "Plein-Variable";
  font-style: italic;
  font-weight: 400;
  line-height: 160%;
}

span.underline {
  font-family: "Plein-Variable";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  text-decoration-line: underline;
}

span.bold {
  font-family: "Plein-Variable";
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}

ul {
  margin: 0;
  padding-left: 14px;
}

ul li {
  color: #4b4a5a;
  /* p1/base */
  font-family: "Plein-Variable";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
}

.caption {
  color: #0b0099;
  font-family: "PT Serif";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%; /* 28.8px */
}

.overline {
  color: #4f4f4f;
  font-family: "Plein-Variable";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px; /* 100% */
  letter-spacing: 1.12px;
  text-transform: uppercase;
}

.menu-link {
  cursor: pointer;
}

.invisible {
  visibility: hidden;
}

.large-button {
  display: flex;
  flex-direction: row;
  padding: 12px 24px 12px 14px;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0px 12px 16px 0px rgba(11, 0, 153, 0.04);
  width: max-content;
  cursor: pointer;
}
.large-button .scroll-down-icon {
  background: url("../images/general/icon_down.svg");
  width: 24px;
  height: 24px;
  background-size: contain;
  margin-right: 12px;
}
.large-button .button-text {
  color: var(--fill-accent, #382be9);
  font-family: "Plein-Variable";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
}

.large-button:hover {
  box-shadow: none;
}

.quote-text {
  padding: 24px 0 24px 0;
  margin: 40px 30px 40px 30px;
  display: block;
  border-top: 1px solid #d7d4f9;
  border-bottom: 1px solid #d7d4f9;
}
.quote-text .quote-icon {
  width: 16px;
  height: 16px;
  background: url("../images/general/blockquote.png");
  background-size: contain;
}

.footer-light {
  display: flex;
  padding: 24px 80px;
  align-items: center;
  gap: 137px;
  border-top: 1px solid #dadcfb;
  background: #fff;
}
.footer-light .menu-links {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.footer-light .menu-links p.light {
  color: var(--text-default, #57556d);
  font-family: "Plein-Variable";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
  cursor: pointer;
  margin: 0;
}
.footer-light .menu-links p.light:hover {
  color: var(--fill-accent, #382be9);
}

.footer-large {
  display: flex;
  flex-direction: column;
  gap: 0px;
  background: #fff;
}
.footer-large .row:nth-child(1) {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 80px;
  align-items: flex-start;
  border-top: 1px solid #dadcfb;
}
.footer-large .row:nth-child(1) h4 {
  color: var(--text-tinted, #181452);
}
.footer-large .row:nth-child(1) p.light {
  color: var(--text-default, #57556d);
  flex-shrink: 0;
  align-self: stretch;
  margin: 0;
}
.footer-large .row:nth-child(2) {
  display: flex;
  flex-direction: row;
  padding: 48px 80px;
  align-items: flex-start;
  gap: 64px;
}
.footer-large .row:nth-child(2) .col:nth-child(1),
.footer-large .row:nth-child(2) .col:nth-child(2),
.footer-large .row:nth-child(2) .col:nth-child(3) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.footer-large .row:nth-child(2) .col:nth-child(1) .legend,
.footer-large .row:nth-child(2) .col:nth-child(2) .legend,
.footer-large .row:nth-child(2) .col:nth-child(3) .legend {
  color: var(--text-default, #57556d);
  font-family: "Plein-Variable";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
}
.footer-large .row:nth-child(2) .col:nth-child(1) .logo-link,
.footer-large .row:nth-child(2) .col:nth-child(2) .logo-link,
.footer-large .row:nth-child(2) .col:nth-child(3) .logo-link {
  cursor: pointer;
}
.footer-large .row:nth-child(2) .col:nth-child(1) .logo-qs {
  width: 174px;
  height: 42px;
  background: url("../images/footer/qs_logo.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.footer-large .row:nth-child(2) .col:nth-child(2) .logo-rf {
  width: 266px;
  height: 55px;
  background: url("../images/footer/rf_logo.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.footer-large .row:nth-child(2) .col:nth-child(3) .collab {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.footer-large .row:nth-child(2) .col:nth-child(3) .collab .logo-ap {
  width: 218px;
  height: 48px;
  background: url("../images/footer/artpark.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.footer-large .row:nth-child(2) .col:nth-child(3) .collab .logo-pk {
  width: 80px;
  height: 80px;
  background: url("../images/footer/pkc_logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: -20px;
}
.footer-large .row:nth-child(3) {
  display: flex;
  padding: 24px 80px;
  align-items: center;
  gap: 137px;
  border-top: 1px solid #dadcfb;
  background: #fff;
}
.footer-large .row:nth-child(3) .menu-links {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.footer-large .row:nth-child(3) .menu-links p.light {
  color: var(--text-default, #57556d);
  font-family: "Plein-Variable";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
  cursor: pointer;
  margin: 0;
}
.footer-large .row:nth-child(3) .menu-links p.light:hover {
  color: var(--fill-accent, #382be9);
}

/* Mobile style */
@media (max-width: 480px) {
  h1 {
    color: #0c0a29;
    /* h1/mobile */
    font-family: "Plein-Variable";
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 112%; /* 42.56px */
    letter-spacing: -0.76px;
  }
  h3 {
    color: #0a2511;
    font-family: "Plein-Variable";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 35px */
  }
  .caption {
    color: #0b0099;
    font-family: "PT Serif";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 144%; /* 28.8px */
  }
}
@media (min-width: 481px) and (max-width: 820px) {
  h1 {
    color: #0c0a29;
    /* h1/mobile */
    font-family: "Plein-Variable";
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 112%; /* 42.56px */
    letter-spacing: -0.76px;
  }
  h3 {
    color: #0a2511;
    font-family: "Plein-Variable";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 35px */
  }
  .caption {
    color: #0b0099;
    font-family: "PT Serif";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 144%; /* 28.8px */
  }
}
@media (min-width: 821px) and (max-width: 1100px) {
  h1 {
    color: #0c0a29;
    /* h1/mobile */
    font-family: "Plein-Variable";
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 112%; /* 42.56px */
    letter-spacing: -0.76px;
  }
  h3 {
    color: #0a2511;
    font-family: "Plein-Variable";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 35px */
  }
  .caption {
    color: #0b0099;
    font-family: "PT Serif";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 144%; /* 28.8px */
  }
}
@media (min-width: 1101px) and (max-width: 1180px) {
  h1 {
    color: #0c0a29;
    /* h1/mobile */
    font-family: "Plein-Variable";
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 112%; /* 42.56px */
    letter-spacing: -0.76px;
  }
  h3 {
    color: #0a2511;
    font-family: "Plein-Variable";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 35px */
  }
  .caption {
    color: #0b0099;
    font-family: "PT Serif";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 144%; /* 28.8px */
  }
}
@media (max-width: 1180px) {
  .footer-large {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-large .row:nth-child(1) {
    padding: 40px 24px;
    gap: 24px;
  }
  .footer-large .row:nth-child(2) {
    display: flex;
    width: 360px;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
  }
  .footer-large .row:nth-child(3) {
    display: flex;
    padding: 24px 20px;
    align-items: center;
    gap: 137px;
  }
  .footer-large .row:nth-child(3) .menu-links {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 20px;
    flex: 1 0 0;
    flex-wrap: wrap;
  }
  .footer-light {
    display: flex;
    padding: 24px 20px;
    align-items: center;
    gap: 137px;
  }
  .footer-light .menu-links {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 20px;
    flex: 1 0 0;
    flex-wrap: wrap;
  }
}
.navigation-mobile {
  display: none;
}

.navigation-mobile-menu {
  display: none;
}

.mobile-navigation-offset {
  display: none;
}

.navigation {
  /*Padding vertical 28px*/
  /*Padding horizontal 82px*/
  padding: 28px 80px 28px 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  opacity: 1;
  z-index: 999;
}
.navigation .logo {
  color: #000;
  font-family: "Plein-Variable";
  font-size: 23px;
  font-style: normal;
  font-weight: 900;
  line-height: 24px; /* 104.348% */
  letter-spacing: -0.46px;
}
.navigation .menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.navigation .menu .nav-item {
  color: var(--text-default, #57556d);
  font-family: "PT Serif";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 133.333% */
  margin-right: 40px;
}
.navigation .menu .nav-item:last-child {
  margin-right: 0;
}

@media (max-width: 1100px) {
  .navigation {
    display: none;
  }
  .mobile-navigation-offset {
    width: 100vw;
    height: 82px;
    display: block;
  }
  .navigation-mobile {
    display: block;
    position: fixed;
    top: 0px;
    width: 100vw;
    z-index: 999;
  }
  .navigation-mobile .logo {
    color: #000;
    font-family: "Plein-Variable";
    font-size: 23px;
    font-style: normal;
    font-weight: 900;
    line-height: 24px; /* 104.348% */
    letter-spacing: -0.46px;
  }
  .navigation-mobile .menu-top {
    display: flex;
    padding: 24px;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 4px 4px 0px rgba(140, 140, 140, 0.05);
    backdrop-filter: blur(6px);
    z-index: 99;
  }
  .navigation-mobile .menu-top .menu-icon-container-open {
    display: flex;
    width: 24px;
    height: 24px;
    padding: 5.5px 0.5px 4.5px 1.5px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    animation-fill-mode: forwards;
  }
  .navigation-mobile .menu-top .menu-icon-container-open .menu-icon {
    width: 22px;
    height: 14px;
    flex-shrink: 0;
    background: url("../images/general/mobile_menu_open.svg");
    background-size: contain;
  }
  .navigation-mobile .menu-top .menu-icon-container-close {
    display: flex;
    width: 24px;
    height: 24px;
    padding: 4px 2.444px 4.444px 6px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    opacity: 0;
    display: none;
  }
  .navigation-mobile .menu-top .menu-icon-container-close .menu-icon {
    width: 15.557px;
    height: 15.556px;
    flex-shrink: 0;
    background: url("../images/general/mobile_menu_close.svg");
    background-size: contain;
  }
  .navigation-mobile-menu {
    display: block;
    position: fixed;
    top: 82px;
    width: 100%;
    height: calc(100vh - 82px);
    background: rgba(255, 255, 255, 0.9);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
  }
  .navigation-mobile-menu .menu-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: calc(100vh - 82px);
    justify-content: center;
  }
  .navigation-mobile-menu .menu-item {
    color: var(--text-default, #57556d);
    text-align: center;
    font-family: "PT Serif";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px; /* 150% */
    margin-top: 32px;
  }
  .navigation-mobile-menu .menu-item:first-child {
    margin-top: 0;
  }
}
body {
  background: #cbebf8;
}

.navigation {
  background: #cbebf8;
}

.header {
  max-width: 971px;
  margin: 56px auto 87px auto;
  display: flex;
  flex-direction: column;
}
.header .core-message {
  color: var(--text-tinted, #181452);
  text-align: center;
  font-family: "Plein-Variable";
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 112%; /* 71.68px */
  letter-spacing: -0.64px;
  margin-bottom: 24px;
}
.header .subtitle {
  color: var(--text-tinted, #181452);
  text-align: center;
  font-family: "Plein-Variable";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 145.455% */
  margin-bottom: 32px;
}
.header .large_blue_button {
  margin: 0 auto;
}

.core-image-container {
  display: flex;
  height: 720px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.core-image-container .core-image {
  width: 1176px;
  height: 658px;
  flex-shrink: 0;
  background: url("../images/city/home_city_desktop_2x.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.audience-container {
  display: flex;
  padding: 80px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #cbebf8;
  max-width: 1176px;
  margin: 0 auto;
}
.audience-container .audience {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 16px;
  border: 1px solid #dadcfb;
  background: #fff;
  gap: 10px;
  padding: 48px;
}
.audience-container .audience h4 {
  color: var(--text-quote, #0b0099);
  align-self: stretch;
}
.audience-container .audience p {
  color: #595775;
  align-self: stretch;
}

/*
.technology-intro {
  background-color: #fff;
  display: flex;
  margin: 0 auto;
  padding: 113px 80px 108px 180px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;

  .col:nth-child(1) {
    max-width: 573px;
    padding: 64px 48px;
    flex-direction: column;
    align-items: flex-start;

    h2 {
      align-self: stretch;
      color: var(--text-tinted, #181452);
      margin-bottom: 16px;
    }
    p {
      align-self: stretch;
      color: var(--text-default, #57556d);
      margin-bottom: 24px;
    }
  }

  .col:nth-child(2) {
    .technology-illustration {
      width: 473px;
      height: 399px;
      background: url("../images/general/technology-illustration.png");
      background-size: contain;
    }
  }
}*/
.technology-intro {
  display: none;
}

/* Mobile style */
@media (max-width: 480px) {
  .navigation-mobile .menu-top {
    background: #cbebf8;
    box-shadow: none;
  }
  .navigation-mobile-menu {
    background: #cbebf8;
  }
  .header {
    max-width: 100%;
    margin: 0 auto;
    padding: 48px 24px;
  }
  .header .core-message {
    color: var(--text-tinted, #181452);
    font-family: "Plein-Variable";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 112%; /* 53.76px */
    letter-spacing: -0.48px;
    align-self: stretch;
    text-align: left;
    margin-bottom: 24px;
  }
  .header .subtitle {
    color: var(--text-tinted, #181452);
    font-family: "Plein-Variable";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 145.455% */
    margin-bottom: 32px;
    text-align: left;
  }
  .header .large_blue_button {
    margin: 0;
  }
  .core-image-container {
    display: flex;
    height: 396px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .core-image-container .core-image {
    background: url("../images/city/home_city_mobile_2x.png");
    width: 100%;
    height: 396px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .audience-container {
    padding: 24px;
    max-width: 100%;
  }
  .audience-container .audience {
    padding: 24px;
  }
  /*
  .technology-intro {
    display: flex;
    padding-bottom: 0px;
    flex-direction: column;
    align-items: center;
    padding: 0 0 48px 0;

    .col:nth-child(1) {
      max-width: 100%;
      padding: 48px 24px;
    }

    .col:nth-child(2) {
      .technology-illustration {
        width: 320px;
        height: 270px;
        background: url("../images/general/technology-illustration-mobile.png");
        background-size: contain;
      }
    }
  }*/
}
@media (min-width: 481px) and (max-width: 820px) {
  .navigation-mobile .menu-top {
    background: #cbebf8;
    box-shadow: none;
  }
  .navigation-mobile-menu {
    background: #cbebf8;
  }
  .header {
    max-width: 100%;
    margin: 0 auto;
    padding: 48px 24px;
  }
  .header .core-message {
    color: var(--text-tinted, #181452);
    font-family: "Plein-Variable";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 112%; /* 53.76px */
    letter-spacing: -0.48px;
    align-self: stretch;
    text-align: left;
    margin-bottom: 24px;
  }
  .header .subtitle {
    color: var(--text-tinted, #181452);
    font-family: "Plein-Variable";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 145.455% */
    margin-bottom: 32px;
    text-align: left;
  }
  .header .large_blue_button {
    margin: 0;
  }
  .core-image-container {
    display: flex;
    height: 456px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .core-image-container .core-image {
    background: url("../images/city/home_city_desktop_2x.png");
    width: 100%;
    height: 456px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .audience-container {
    padding: 24px;
    max-width: 100%;
  }
  .audience-container .audience {
    padding: 24px;
  }
  /*
  .technology-intro {
    display: flex;
    padding-bottom: 0px;
    flex-direction: column;
    align-items: center;
    padding: 0 0 48px 0;

    .col:nth-child(1) {
      max-width: 100%;
      padding: 48px 24px;
    }

    .col:nth-child(2) {
      .technology-illustration {
        width: 320px;
        height: 270px;
        background: url("../images/general/technology-illustration-mobile.png");
        background-size: contain;
      }
    }
  }*/
}
@media (min-width: 821px) and (max-width: 1100px) {
  .navigation-mobile .menu-top {
    background: #cbebf8;
    box-shadow: none;
  }
  .navigation-mobile-menu {
    background: #cbebf8;
  }
  .header {
    max-width: 100%;
    margin: 0 auto;
    padding: 48px 24px;
  }
  .header .core-message {
    color: var(--text-tinted, #181452);
    font-family: "Plein-Variable";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 112%; /* 53.76px */
    letter-spacing: -0.48px;
    align-self: stretch;
    text-align: left;
    margin-bottom: 24px;
  }
  .header .subtitle {
    color: var(--text-tinted, #181452);
    font-family: "Plein-Variable";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 145.455% */
    margin-bottom: 32px;
    text-align: left;
  }
  .header .large_blue_button {
    margin: 0;
  }
  .core-image-container {
    display: flex;
    height: 576px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .core-image-container .core-image {
    background: url("../images/city/home_city_desktop_2x.png");
    width: 100%;
    height: 576px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .audience-container {
    padding: 24px;
    max-width: 100%;
  }
  .audience-container .audience {
    padding: 24px;
  }
  /*
  .technology-intro {
    display: flex;
    padding-bottom: 0px;
    flex-direction: column;
    align-items: center;
    padding: 0 0 48px 0;

    .col:nth-child(1) {
      max-width: 100%;
      padding: 48px 24px;
    }

    .col:nth-child(2) {
      .technology-illustration {
        width: 320px;
        height: 270px;
        background: url("../images/general/technology-illustration-mobile.png");
        background-size: contain;
      }
    }
  }*/
}
@media (min-width: 1101px) and (max-width: 1180px) {
  .navigation-mobile .menu-top {
    background: #cbebf8;
    box-shadow: none;
  }
  .navigation-mobile-menu {
    background: #cbebf8;
  }
  .header {
    max-width: 100%;
    margin: 0 auto;
    padding: 48px 24px;
  }
  .header .core-message {
    color: var(--text-tinted, #181452);
    font-family: "Plein-Variable";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 112%; /* 53.76px */
    letter-spacing: -0.48px;
    align-self: stretch;
    text-align: left;
    margin-bottom: 24px;
  }
  .header .subtitle {
    color: var(--text-tinted, #181452);
    font-family: "Plein-Variable";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 145.455% */
    margin-bottom: 32px;
    text-align: left;
  }
  .header .large_blue_button {
    margin: 0;
  }
  .core-image-container {
    display: flex;
    height: 660px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .core-image-container .core-image {
    background: url("../images/city/home_city_desktop_2x.png");
    width: 100%;
    height: 660px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  /*
  .technology-intro {
    display: flex;
    padding-bottom: 0px;
    flex-direction: column;
    align-items: center;
    padding: 0 0 48px 0;

    .col:nth-child(1) {
      max-width: 100%;
      padding: 48px 24px;
    }

    .col:nth-child(2) {
      .technology-illustration {
        width: 320px;
        height: 270px;
        background: url("../images/general/technology-illustration-mobile.png");
        background-size: contain;
      }
    }
  }*/
}